home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 4323 < prev    next >
Encoding:
Text File  |  1996-08-05  |  545 b   |  23 lines

  1. Path: ccnet.com!usenet
  2. From: fladung@emf.net (Fast Eddie)
  3. Newsgroups: comp.lang.c
  4. Subject: Multiple Labels in a #ifdef
  5. Date: Thu, 01 Feb 1996 23:12:50 GMT
  6. Organization: CCnet Communications (510-988-7140 guest)
  7. Message-ID: <4erh8d$86u@ccnet2.ccnet.com>
  8. Reply-To: fladung@emf.net
  9. NNTP-Posting-Host: 199.217.9.50
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. Is is possible to use multiple labels in a #ifdef?
  13.  
  14. This is what I would like to do:
  15.  
  16. #ifdef (DEBUG1 | DEBUG2 | DEBUG3)
  17.  
  18. /* define something if DEBUG1 or DEBUG2 or DEBUG3 is defined */
  19.  
  20. #endif
  21.  
  22.  
  23.